home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amiga / rexxecute / programmers / read_me! < prev    next >
Encoding:
Text File  |  1996-02-14  |  1.3 KB  |  36 lines

  1. /**********************************************************************/
  2. /*    !!!!!THIS DIRECTORY IS EMPTY IN THE DEMO DISTRIBUTION!!!!!!     */
  3. /**********************************************************************/
  4.  
  5.  
  6. This directory contains an example of linking an Rexecute Object File to your
  7. own `C' programs.
  8.  
  9. If you are using assembler, put TWO underscores before the function name,
  10. ie:
  11.          __SendMacro(char *, char * , BOOL, char *)
  12.                        a0     a1       d0    a2
  13.  
  14. The return value is in d0.
  15.  
  16. Read "test.c" and "RexecuteSUPPORT.h" for further info.
  17.  
  18. The `C' routine is merely a stub to the assembler version.
  19. If you have SAS C you can skip the stub by pototyping the function in your
  20. code in the following manner:
  21.  
  22. extern __asm BOOL _SendMacro( register __a0 char *,
  23.                               register __a1 char *,
  24.                               register __d0 BOOL,
  25.                               register __a2 char * );
  26.  
  27.  The library has been put together with a volumous chunk of help from the
  28. RXIL.lib which is to be found on Fish Disk NÂș 299 by Don Meyer.
  29. (If your serious about using Arexx in your program's, Get this, although
  30. I found it very buggy in places!)
  31.  
  32. RexecuteSUPPORT.lib is FREE and is not considered licenceware, freeware, or
  33. anything else ware.
  34.  
  35.  
  36.